home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C14 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  2.7 KB  |  123 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C14
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     Compose.exe \
  20.     Compose2.exe \
  21.     Inherit.exe \
  22.     Combined.exe \
  23.     Order.exe \
  24.     Hide.exe \
  25.     Ninherit.exe \
  26.     Car.exe \
  27.     FName1.exe \
  28.     FName2.exe \
  29.     InheritStack.exe \
  30.     Privinh.exe \
  31.     Protect.exe \
  32.     Wind.exe \
  33.     Ccright.exe \
  34.     InheritStack2.exe 
  35.  
  36. test: all 
  37.     Compose.exe  
  38.     Compose2.exe  
  39.     Inherit.exe  
  40.     Combined.exe  
  41.     Order.exe  
  42.     Hide.exe  
  43.     Ninherit.exe  
  44.     Car.exe  
  45.     FName1.exe  
  46.     FName2.exe  
  47.     InheritStack.exe  
  48.     Privinh.exe  
  49.     Protect.exe  
  50.     Wind.exe  
  51.     Ccright.exe  
  52.     InheritStack2.exe  
  53.  
  54. bugs: 
  55.     @echo No compiler bugs in this directory!
  56.  
  57. Compose.exe: Compose.obj 
  58.     $(CPP) $(OFLAG)Compose.exe Compose.obj 
  59.  
  60. Compose2.exe: Compose2.obj 
  61.     $(CPP) $(OFLAG)Compose2.exe Compose2.obj 
  62.  
  63. Inherit.exe: Inherit.obj 
  64.     $(CPP) $(OFLAG)Inherit.exe Inherit.obj 
  65.  
  66. Combined.exe: Combined.obj 
  67.     $(CPP) $(OFLAG)Combined.exe Combined.obj 
  68.  
  69. Order.exe: Order.obj 
  70.     $(CPP) $(OFLAG)Order.exe Order.obj 
  71.  
  72. Hide.exe: Hide.obj 
  73.     $(CPP) $(OFLAG)Hide.exe Hide.obj 
  74.  
  75. Ninherit.exe: Ninherit.obj 
  76.     $(CPP) $(OFLAG)Ninherit.exe Ninherit.obj 
  77.  
  78. Car.exe: Car.obj 
  79.     $(CPP) $(OFLAG)Car.exe Car.obj 
  80.  
  81. FName1.exe: FName1.obj 
  82.     $(CPP) $(OFLAG)FName1.exe FName1.obj 
  83.  
  84. FName2.exe: FName2.obj 
  85.     $(CPP) $(OFLAG)FName2.exe FName2.obj 
  86.  
  87. InheritStack.exe: InheritStack.obj ..\C13\Stack4.obj 
  88.     $(CPP) $(OFLAG)InheritStack.exe InheritStack.obj ..\C13\Stack4.obj 
  89.  
  90. Privinh.exe: Privinh.obj 
  91.     $(CPP) $(OFLAG)Privinh.exe Privinh.obj 
  92.  
  93. Protect.exe: Protect.obj 
  94.     $(CPP) $(OFLAG)Protect.exe Protect.obj 
  95.  
  96. Wind.exe: Wind.obj 
  97.     $(CPP) $(OFLAG)Wind.exe Wind.obj 
  98.  
  99. Ccright.exe: Ccright.obj 
  100.     $(CPP) $(OFLAG)Ccright.exe Ccright.obj 
  101.  
  102. InheritStack2.exe: InheritStack2.obj ..\C13\Stack4.obj 
  103.     $(CPP) $(OFLAG)InheritStack2.exe InheritStack2.obj ..\C13\Stack4.obj 
  104.  
  105.  
  106. Compose.obj: Compose.cpp Useful.h 
  107. Compose2.obj: Compose2.cpp Useful.h 
  108. Inherit.obj: Inherit.cpp Useful.h 
  109. Combined.obj: Combined.cpp 
  110. Order.obj: Order.cpp 
  111. Hide.obj: Hide.cpp 
  112. Ninherit.obj: Ninherit.cpp 
  113. Car.obj: Car.cpp 
  114. FName1.obj: FName1.cpp ..\require.h 
  115. FName2.obj: FName2.cpp ..\require.h 
  116. InheritStack.obj: InheritStack.cpp ..\C13\Stack4.h ..\require.h 
  117. Privinh.obj: Privinh.cpp 
  118. Protect.obj: Protect.cpp 
  119. Wind.obj: Wind.cpp 
  120. Ccright.obj: Ccright.cpp 
  121. InheritStack2.obj: InheritStack2.cpp ..\C13\Stack4.h ..\require.h 
  122.  
  123.